Kone
Toggle table of contents
0.0.0-experiment-2025.7.7.13
common
Platform filter
common
Switch theme
Search in API
Kone
kone.automata
/
dev.lounres.kone.automata
/
CheckResult
Check
Result
sealed
interface
CheckResult
<
out
State
,
out
NoNextStateReason
>
(
source
)
Inheritors
Failure
Success
Members
Types
Failure
Link copied to clipboard
data
class
Failure
<
out
NoNextStateReason
>
(
val
reason
:
NoNextStateReason
)
:
CheckResult
<
Nothing
,
NoNextStateReason
>
Success
Link copied to clipboard
data
class
Success
<
out
State
>
(
val
nextState
:
State
)
:
CheckResult
<
State
,
Nothing
>